/* CSS Document */
     
body {
      font-family: "Lato", sans-serif;
      transition: background-color .5s;
      background-color: rgba(71,71,71,1.00);
    }
.i-center{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%)
}
.newsfeed{
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translate(-50%,0);
    background-color:rgba(198,129,26,0.43);
    color: whitesmoke;
}

.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color:rgba(0,0,0,0.50);
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
}

.sidenav a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}
.textbox{
    position: absolute;
    left: 50%;
    bottom: 50%;
    transform: translate(-50%,-50%);
    border-radius: 25px 0px 25px 25px;
    z-index: 1;
}
.sidenav a:hover {
  color: #f1f1f1;
}

.sidenav .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

#main {
  transition: margin-left .5s;
  padding: 16px;
}

@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}